home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Euroscene 2
/
Euroscene 2.iso
/
USEFUL
/
DeliTracker130
/
Rexx
/
dt_fadeout.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-06-23
|
213b
|
19 lines
/* DeliTracker - toggles fadeout */
address 'rexx_DT'
options results
status G fad
if result == "no" then do
fadeout yes
say "Fadeout is now on..."
end
else do
fadeout no
say "Fadeout is now off..."
end